projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
37254dc
)
* src/emacs.c (Fkill_emacs): Remove return statement.
author
Dan Nicolaescu
<dann@ics.uci.edu>
Tue, 27 Jul 2010 08:02:44 +0000
(
01:02
-0700)
committer
Dan Nicolaescu
<dann@ics.uci.edu>
Tue, 27 Jul 2010 08:02:44 +0000
(
01:02
-0700)
src/ChangeLog
patch
|
blob
|
history
src/emacs.c
patch
|
blob
|
history
diff --git
a/src/ChangeLog
b/src/ChangeLog
index 7cdbb5fc10abceebd0b241ae39af3d4628f6a62e..4c4ac5f8725bba5a3bdad755f29e241e98ebca51 100644
(file)
--- a/
src/ChangeLog
+++ b/
src/ChangeLog
@@
-1,5
+1,7
@@
2010-07-27 Dan Nicolaescu <dann@ics.uci.edu>
+ * emacs.c (Fkill_emacs): Remove return statement.
+
* term.c (Qspace, QCalign_to, QCwidth): Remove declarations.
(encode_terminal_code, produce_composite_glyph): Remove unused variables.
(set_tty_color_mode, term_mouse_highlight, term_get_fkeys): Remove
diff --git
a/src/emacs.c
b/src/emacs.c
index 90a6e278b93b6d2a7aaea04446db153d3398130a..c9a4ae5d0db5a4cecd7bbad91e0ec82d95395651 100644
(file)
--- a/
src/emacs.c
+++ b/
src/emacs.c
@@
-2093,8
+2093,6
@@
all of which are called before Emacs is actually killed. */)
unlink (SDATA (Vauto_save_list_file_name));
exit (INTEGERP (arg) ? XINT (arg) : EXIT_SUCCESS);
- /* NOTREACHED */
- return Qnil;
}